Also reserve space for the resize grip if the grip_window is not realized
authorMatthias Clasen <mclasen@redhat.com>
Fri, 12 Nov 2004 03:36:35 +0000 (03:36 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 12 Nov 2004 03:36:35 +0000 (03:36 +0000)
2004-11-11  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Also
reserve space for the resize grip if the grip_window is not
realized yet.  (#158010, Christian Persch)
(gtk_statusbar_button_press): Only start a resize if the
button press comes from the grip_window.  (#158011, Christian Persch)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkstatusbar.c

index 17a99dd7572d8e83915a68c2ffd45fc05c75cae1..f48edfe0c04ccf4240166faefd062b407cf71b7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-11-11  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Also
+       reserve space for the resize grip if the grip_window is not
+       realized yet.  (#158010, Christian Persch)
+       (gtk_statusbar_button_press): Only start a resize if the
+       button press comes from the grip_window.  (#158011, Christian Persch)
+
 2004-11-11  Tor Lillqvist  <tml@iki.fi>
 
        Fix for #137551, by Robert Ögren:
index 17a99dd7572d8e83915a68c2ffd45fc05c75cae1..f48edfe0c04ccf4240166faefd062b407cf71b7f 100644 (file)
@@ -1,3 +1,11 @@
+2004-11-11  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Also
+       reserve space for the resize grip if the grip_window is not
+       realized yet.  (#158010, Christian Persch)
+       (gtk_statusbar_button_press): Only start a resize if the
+       button press comes from the grip_window.  (#158011, Christian Persch)
+
 2004-11-11  Tor Lillqvist  <tml@iki.fi>
 
        Fix for #137551, by Robert Ögren:
index 17a99dd7572d8e83915a68c2ffd45fc05c75cae1..f48edfe0c04ccf4240166faefd062b407cf71b7f 100644 (file)
@@ -1,3 +1,11 @@
+2004-11-11  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Also
+       reserve space for the resize grip if the grip_window is not
+       realized yet.  (#158010, Christian Persch)
+       (gtk_statusbar_button_press): Only start a resize if the
+       button press comes from the grip_window.  (#158011, Christian Persch)
+
 2004-11-11  Tor Lillqvist  <tml@iki.fi>
 
        Fix for #137551, by Robert Ögren:
index 17a99dd7572d8e83915a68c2ffd45fc05c75cae1..f48edfe0c04ccf4240166faefd062b407cf71b7f 100644 (file)
@@ -1,3 +1,11 @@
+2004-11-11  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Also
+       reserve space for the resize grip if the grip_window is not
+       realized yet.  (#158010, Christian Persch)
+       (gtk_statusbar_button_press): Only start a resize if the
+       button press comes from the grip_window.  (#158011, Christian Persch)
+
 2004-11-11  Tor Lillqvist  <tml@iki.fi>
 
        Fix for #137551, by Robert Ögren:
index 8c29f93fff9a9209d5c53d6d864af535d62328f8..e985ac3ac6f504458016cd4dac5cd6f3a0a9b967 100644 (file)
@@ -684,7 +684,8 @@ gtk_statusbar_button_press (GtkWidget      *widget,
   statusbar = GTK_STATUSBAR (widget);
   
   if (!statusbar->has_resize_grip ||
-    event->type != GDK_BUTTON_PRESS)
+      event->type != GDK_BUTTON_PRESS ||
+      event->window != statusbar->grip_window)
     return FALSE;
   
   ancestor = gtk_widget_get_toplevel (widget);
@@ -803,7 +804,7 @@ gtk_statusbar_size_allocate  (GtkWidget     *widget,
   gboolean extra_children;
   GdkRectangle rect, overlap;
 
-  if (statusbar->has_resize_grip && statusbar->grip_window)
+  if (statusbar->has_resize_grip)
     {
       widget->allocation = *allocation;
       get_grip_rect (statusbar, &rect);    
@@ -828,12 +829,15 @@ gtk_statusbar_size_allocate  (GtkWidget     *widget,
   /* chain up normally */
   GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation);
 
-  if (statusbar->has_resize_grip && statusbar->grip_window)
+  if (statusbar->has_resize_grip)
     {
-      gdk_window_raise (statusbar->grip_window);
-      gdk_window_move_resize (statusbar->grip_window,
-                             rect.x, rect.y,
-                             rect.width, rect.height);
+      if (statusbar->grip_window)
+       {
+         gdk_window_raise (statusbar->grip_window);
+         gdk_window_move_resize (statusbar->grip_window,
+                                 rect.x, rect.y,
+                                 rect.width, rect.height);
+       }
 
       if (extra_children) 
        {